home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zfilter2.c < prev    next >
C/C++ Source or Header  |  1996-09-16  |  4KB  |  150 lines

  1. /* Copyright (C) 1991, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfilter2.c */
  20. /* Additional filter creation */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "gsstruct.h"
  26. #include "ialloc.h"
  27. #include "idict.h"
  28. #include "idparam.h"
  29. #include "store.h"
  30. #include "strimpl.h"
  31. #include "sfilter.h"
  32. #include "scfx.h"
  33. #include "slzwx.h"
  34. #include "spdiffx.h"
  35. #include "spngpx.h"
  36. #include "ifilter.h"
  37.  
  38. /* Import setup code from zfdecode.c */
  39. int zcf_setup(P2(os_ptr op, stream_CF_state *pcfs));
  40. int zlz_setup(P2(os_ptr op, stream_LZW_state *plzs));
  41. int zpd_setup(P2(os_ptr op, stream_PDiff_state *ppds));
  42. int zpp_setup(P2(os_ptr op, stream_PNGP_state *ppps));
  43.  
  44. /* ------ CCITTFaxEncode filter ------ */
  45.  
  46. /* <target> <dict> CCITTFaxEncode/filter <file> */
  47. private int
  48. zCFE(os_ptr op)
  49. {    stream_CFE_state cfs;
  50.     int code;
  51.  
  52.     check_type(*op, t_dictionary);
  53.     check_dict_read(*op);
  54.     code = zcf_setup(op, (stream_CF_state *)&cfs);
  55.     if ( code < 0 )
  56.       return code;
  57.     return filter_write(op, 1, &s_CFE_template, (stream_state *)&cfs, 0);
  58. }
  59.  
  60. /* ------ Common setup for possibly pixel-oriented encoding filters ------ */
  61.  
  62. int
  63. filter_write_predictor(os_ptr op, int npop, const stream_template *template,
  64.   stream_state *st)
  65. {    int predictor, code;
  66.     stream_PDiff_state pds;
  67.     stream_PNGP_state pps;
  68.  
  69.     if ( r_has_type(op, t_dictionary) )
  70.       { if ( (code = dict_int_param(op, "Predictor", 0, 15, 1, &predictor)) < 0 )
  71.           return code;
  72.         switch ( predictor )
  73.           {
  74.           case 0:        /* identity */
  75.         predictor = 1;
  76.           case 1:        /* identity */
  77.         break;
  78.           case 2:        /* componentwise horizontal differencing */
  79.         code = zpd_setup(op, &pds);
  80.         break;
  81.           case 10: case 11: case 12: case 13: case 14: case 15:
  82.                 /* PNG prediction */
  83.         code = zpp_setup(op, &pps);
  84.         break;
  85.           default:
  86.         return_error(e_rangecheck);
  87.           }
  88.         if ( code < 0 )
  89.           return code;
  90.       }
  91.     else
  92.       predictor = 1;
  93.     if ( predictor == 1 )
  94.       return filter_write(op, npop, template, st, 0);
  95.     { /* We need to cascade filters. */
  96.       ref rtarget, rdict, rfd;
  97.       int code;
  98.  
  99.       /* Save the operands, just in case. */
  100.       ref_assign(&rtarget, op - 1);
  101.       ref_assign(&rdict, op);
  102.       code = filter_write(op, 1, template, st, 0);
  103.       if ( code < 0 )
  104.         return code;
  105.       /* filter_write changed osp.... */
  106.       op = osp;
  107.       ref_assign(&rfd, op);
  108.       code =
  109.         (predictor == 2 ?
  110.          filter_read(op, 0, &s_PDiffE_template, (stream_state *)&pds, 0) :
  111.          filter_read(op, 0, &s_PNGPE_template, (stream_state *)&pps, 0));
  112.       if ( code < 0 )
  113.         { /* Restore the operands.  Don't bother trying to clean up */
  114.           /* the first stream. */
  115.           osp = ++op;
  116.           ref_assign(op - 1, &rtarget);
  117.           ref_assign(op, &rdict);
  118.           return code;
  119.         }
  120.       filter_mark_temp(&rfd, 2);    /* Mark the compression stream as temporary. */
  121.       return code;
  122.     }
  123. }
  124.  
  125. /* ------ LZW encoding filter ------ */
  126.  
  127. /* <target> LZWEncode/filter <file> */
  128. /* <target> <dict> LZWEncode/filter <file> */
  129. /* Note: the default implementation of this filter, in slzwce.c, */
  130. /* does not use any algorithms that could reasonably be claimed */
  131. /* to be subject to Unisys' Welch Patent. */
  132. private int
  133. zLZWE(os_ptr op)
  134. {    stream_LZW_state lzs;
  135.     int code = zlz_setup(op, &lzs);
  136.  
  137.     if ( code < 0 )
  138.       return code;
  139.     return filter_write_predictor(op, code, &s_LZWE_template,
  140.                       (stream_state *)&lzs);
  141. }
  142.  
  143. /* ================ Initialization procedure ================ */
  144.  
  145. BEGIN_OP_DEFS(zfilter2_op_defs) {
  146.         op_def_begin_filter(),
  147.     {"2CCITTFaxEncode", zCFE},
  148.     {"1LZWEncode", zLZWE},
  149. END_OP_DEFS(0) }
  150.